// Because x is 100, only the line draws
int x = 100;
if (x > 100) {              // If x is greater than 100,
  ellipse(50, 50, 36, 36);  // draw this ellipse
}
if (x < 100) {              // If x is less than 100,
  rect(33, 33, 34, 34);     // draw this rectangle
}
line(20, 20, 80, 80);



